home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Printing / STD File Saver 2.1.1 / Source / MyPDEF_5_PrPicFile.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-24  |  1.1 KB  |  42 lines  |  [TEXT/MPS ]

  1. /*
  2. ** Copyright 1991-1996 Apple Computer. All rights reserved.
  3. **
  4. **    You may incorporate this sample code into your applications without
  5. **    restriction, though the sample code has been provided "AS IS" and the
  6. **    responsibility for its operation is 100% yours.  However, what you are
  7. **    not permitted to do is to redistribute the source as "DSC Sample Code"
  8. **    after having made changes. If you're going to re-distribute the source,
  9. **    we require that you make it clear in the source that the code was
  10. **    descended from Apple Sample Code, but that you've made changes.
  11. */
  12.  
  13. #include <Printing.h>
  14.  
  15. pascal void FilePrPicFile(THPrint hPrint,
  16.                             TPPrPort pPrPort,
  17.                             Ptr pIOBuf,
  18.                             Ptr pDevBuf,
  19.                             TPrStatus *prStatus);
  20.  
  21. #if defined(__MWERKS__)
  22. asm void __Startup__ (void);
  23. asm void __Startup__ (void)
  24. {
  25.     JMP    FilePrPicFile
  26. }
  27. #endif
  28.  
  29. pascal void FilePrPicFile(THPrint hPrint,
  30.                             TPPrPort pPrPort,
  31.                             Ptr pIOBuf,
  32.                             Ptr pDevBuf,
  33.                             TPrStatus *prStatus)
  34. {
  35. #pragma unused(hPrint)
  36. #pragma unused(pPrPort)
  37. #pragma unused(pIOBuf)
  38. #pragma unused(pDevBuf)
  39. #pragma unused(prStatus)
  40. }
  41.  
  42.